home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / c / ultratk.exe / VIDEO.H < prev   
Text File  |  1991-08-19  |  448b  |  24 lines

  1.  
  2. /* video.h */
  3.  
  4. typedef struct {
  5.  
  6.    int  cols,rows,location;
  7.    char color, attr, mode;
  8.  
  9. } video_status;
  10.  
  11. int    get_video_status ( void );
  12.  
  13. void   put_char         ( char c );
  14. void   goto_rc          ( int row, int col );
  15. int    put_string       ( char *s, int attribute, int row, int col );
  16.  
  17. void   clear_screen     ( void );
  18. void   hide_cursor      ( void );
  19. void   show_cursor      ( void );
  20.  
  21.        
  22. /* end video.h */
  23.  
  24.